home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 / (Vol 132) Jun 09 2011.iso / Games / eggs.swf / scripts / DefineButton2_220 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2011-06-09  |  392 b   |  11 lines

  1. on(release){
  2.    if(String(tfFormEmail).indexOf("@") != -1 && String(tfFormName).length != 0)
  3.    {
  4.       keyPressed = 1;
  5.       _parent.cGameWorldHighscore.sPlayersNameForHighscore = tfFormName;
  6.       _parent.cGameWorldHighscore.sPlayersEmailForHighscore = tfFormEmail;
  7.       _parent.cGameWorldHighscore.sPlayersScoreForHighscore = _parent.cGameWorld.iGameScore;
  8.       play();
  9.    }
  10. }
  11.